home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d20 / ibink10.arc / MAKEFILE.MAK < prev   
Text File  |  1991-03-09  |  687b  |  43 lines

  1. #
  2. # Make file for IBINK.EXE (A Makefile is probably an overkill for this)
  3. #
  4. # David Bennett - Fido: 1:280/307 - 3/9/91
  5. #
  6.  
  7. #
  8. # Compiler parameters.  You can change the name to 'tcc' if you use
  9. # Turbo C 2.0
  10. #
  11. CC_NAME = bcc
  12. CC_PARAMS = -G- -O -d -r -v- -y- -N- -Z -k-
  13.  
  14. #
  15. # All of the objects
  16. #
  17. OBJECTS = IBINK.OBJ FIDOADR.OBJ
  18.  
  19. #
  20. # Program headers
  21. #
  22. HEADERS = IBINK.H FIDOADR.H
  23.             
  24. #
  25. # Intrinsic Commands
  26. #
  27. .C.OBJ:
  28.    $(CC_NAME) -c $(CC_PARAMS) $<
  29.  
  30. #
  31. # EXE File (Let's compiler call the linker automatcially)
  32. #
  33. IBINK.EXE: $(OBJECTS)
  34.   $(CC_NAME) $(CC_PARAMS) $(OBJECTS)
  35.  
  36. #
  37. # OBJ's
  38. #
  39. IBINK.OBJ: IBINK.C $(HEADERS)
  40.  
  41. FIDOADR.OBJ: FIDOADR.C FIDOADR.H
  42.  
  43.